home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Gamer Resource Kit / Hardcore Gamer Resource Kit - Disc 2.iso / Pc / D_E / ELFISH.ZIP / EF480.EXE / BOOTDISK.BAT < prev    next >
DOS Batch File  |  1994-02-09  |  3KB  |  87 lines

  1. @ECHO OFF
  2. CLS
  3. ECHO           MAXIS Boot Disk Creation Utility Version 1.00
  4. ECHO                                 by
  5. ECHO                  Chris Blackwell & Roger Johnsen
  6. ECHO.
  7. ECHO This file will attempt to create a boot disk in your A: drive
  8. ECHO You must now place a BLANK diskette in the A: drive. This disk
  9. ECHO will be formatted and all data on the disk will be lost. Make sure
  10. ECHO that you do not have any diskettes in the A: drive that have
  11. ECHO important data on them (for example, make sure that none of the
  12. ECHO game diskettes are in the A: drive!)
  13. ECHO.
  14. PAUSE
  15.  
  16. REM *** This paragraph describes what files it expects to find where ***
  17.  
  18. CLS
  19. ECHO This batch program expects to find the file FORMAT.COM file in 
  20. ECHO a directory called DOS in your C: drive. If it is not there 
  21. ECHO (for example, if your DOS directory is not C:\DOS) this program
  22. ECHO will not work.
  23. ECHO.
  24. ECHO It also expects to find the file MOUSE.COM or MOUSE.EXE in either 
  25. ECHO C:\, C:\MOUSE C:\DOS, C:\WINDOWS or C:\VGAUTIL (the program 
  26. ECHO will automatically copy the first one it finds to the boot disk). 
  27. ECHO If it cannot find this file, either because it is not on your system, 
  28. ECHO or is in a different directory, you can copy it to the boot disk 
  29. ECHO when you are done. If you do not have a copy of the MOUSE.COM or 
  30. ECHO MOUSE.EXE, check the utility diskettes that came with your computer 
  31. ECHO or mouse, or contact the manufacturer of the system to inquire in 
  32. ECHO regard to obtaining a mouse driver. Maxis cannot provide you with
  33. ECHO a mouse driver.
  34. ECHO.
  35. ECHO Please insert the blank diskette in the A: drive now and hit any
  36. ECHO to continue. ALL INFORMATION ON THIS DISK WILL BE ERASED!
  37. ECHO.
  38. PAUSE
  39. ECHO.
  40. ECHO If you are sure that the disk you inserted into the A: drive is
  41. ECHO BLANK and NOT your game diskette, hit any key to continue.
  42. ECHO.
  43. PAUSE
  44.  
  45. C:\DOS\FORMAT A: /S /V:BOOT
  46. IF ERRORLEVEL 1 GOTO NO_FORMAT
  47.  
  48. REM *** COPY commands go here ***
  49.  
  50. COPY AUTOEXEC.000 A:AUTOEXEC.BAT
  51. COPY CONFIG.000 A:CONFIG.SYS
  52.  
  53. COPY C:\VGAUTILS\MOUSE.COM A:
  54. COPY C:\DOS\MOUSE.COM A:
  55. COPY C:\WINDOWS\MOUSE.COM A:
  56. COPY C:\WINDOWS\MOUSE.EXE A:
  57. COPY C:\MOUSE.COM A:
  58. COPY C:\MOUSE\MOUSE.COM A:
  59. COPY C:\MOUSE.EXE A:
  60. COPY C:\DOS\MOUSE.EXE A:
  61. COPY C:\DOS\MOUSE.COM A:
  62. COPY C:\MSMOUSE\MOUSE.EXE A:
  63. COPY C:\MOUSE\MOUSE.EXE A:
  64. COPY C:\MSMOUSE\MOUSE.COM A:
  65. COPY C:\MSMOUSE\MOUSE.EXE A:
  66. GOTO END
  67.  
  68. :NO_FORMAT
  69. ECHO.
  70. ECHO An error occured trying to format your diskette.
  71. ECHO Make sure that the FORMAT.COM program is in your C:\DOS directory
  72. ECHO and that the disk that you are attempting to format is a high
  73. ECHO density disk.
  74. ECHO.
  75. PAUSE
  76. GOTO END
  77.  
  78. :END
  79. CLS
  80. ECHO Thank you for using this boot utility.
  81. ECHO If you experience any problems creating a boot disk with this file
  82. ECHO please contact Maxis Technical Support. For contact information, please
  83. ECHO consult the documentation that came with your software.
  84. ECHO.
  85.  
  86.  
  87.